home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.4 Applications 1997 August / SGI IRIX 6.4 Applications 1997 August.iso / dist / gateway.idb / usr / WebFace / Source / 20-NetworkServices / dhcp / dhcp-netconf.hlp.z / dhcp-netconf.hlp
Encoding:
Text File  |  1997-07-30  |  4.3 KB  |  108 lines

  1. #!/usr/bin/perl5
  2. #
  3. # dhcp-netconf.hlp
  4. #
  5. # Copyright 1988-1996 Silicon Graphics, Inc.
  6. # All rights reserved.
  7. #
  8. # This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  9. # the contents of this file may not be disclosed to third parties, copied or
  10. # duplicated in any form, in whole or in part, without the prior written
  11. # permission of Silicon Graphics, Inc.
  12. #
  13. # RESTRICTED RIGHTS LEGEND:
  14. # Use, duplication or disclosure by the Government is subject to restrictions
  15. # as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  16. # and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  17. # successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  18. # rights reserved under the Copyright Laws of the United States.
  19. #
  20. # $Id: dhcp-netconf.hlp,v 1.9 1997/04/17 21:22:59 shotes Exp $
  21.  
  22. print <<EndOfFile;
  23. Content-type: text/html
  24.  
  25. <FORM>
  26. <H2>Configuring DHCP Server Options</H2>
  27. <P>
  28. Clients contact the DHCP server at boot time to request an
  29. Internet address and configuration information.  The information
  30. that the client receives is specified in files in the 
  31. <VAR>/var/dhcp/config</VAR> directory.  This directory
  32. contains a separate configuration file for each network or subnet
  33. in an organization. When you configure the DHCP server,
  34. you specify the configuration information that will be contained in the
  35. DHCP file for clients on a particular network.
  36. </P>
  37. <P>
  38. This page contains a long list of parameters that a DHCP Server can 
  39. send to a client system.  By default, most parameters are hidden. Click
  40. the <I>Go to Advanced Options</I> button to display all
  41. available DHCP parameters.
  42. </P>
  43. <P>
  44. If you leave a parameter blank or as it was, DHCP uses the
  45. default values. After you make changes, click the 
  46. <I>Ok</I> button to put the changes into effect.
  47. </P>
  48.  
  49. <P>
  50. <STRONG>Enable DHCP service for this network:</STRONG> This selection 
  51. controls whether this DHCP server answers requests for this network.
  52. Select <VAR>Yes</VAR> if this server is to answer DHCP requests for this
  53. network; select <VAR>No</VAR> if this server is to ignore DHCP requests 
  54. from this network.
  55. </P>
  56. (Default value: No)
  57. <P>
  58. <STRONG>Allow clients to choose their own hostname:</STRONG> This selection
  59. controls an SGI extension to the DHCP protocol, which allows SGI clients
  60. to request an alternative hostname from the name that is offered. Select
  61. <VAR>Yes</VAR> to allow clients to request an alternative hostname; select 
  62. <VAR>No</VAR> to prevent clients from requesting an alternative hostname. 
  63. When yes is set, a warning is issued if a client requests a name that is
  64. already in use.
  65. </P>
  66. (Default value: Yes)
  67. <P>
  68. <STRONG>Prefix for automatic hostname assignments:</STRONG> DHCP generates
  69. host names by appending a number to this word. Enter a single word for this 
  70. prefix. Do not use punctuation in your entry.
  71. </P>
  72. (Default value: sgiiris)
  73. <P>
  74. <STRONG>Generate new IP addresses from this range:</STRONG> This parameter
  75. allows you to limit client addresses to a subset of the addresses in the entire 
  76. network. This partitioning is particularly useful if the network is shared by 
  77. multiple administrative bodies.  Enter two numbers between 1 and 254 and 
  78. separate your entries with a dash (for example, 50-100 is a valid entry).
  79. </P>
  80. (Default value: 1-254)
  81. <P>
  82. <STRONG>Subnet mask for this network:</STRONG> The Internet address for
  83. a system contains a network number in the most significant bits and
  84. a host number in the least significant bits. A subnet mask overlays the
  85. Internet address to designate the host portion of the address. The mask
  86. contains all ones in the bits associated with the network number and all
  87. zeros in the bits associated with the host number. Enter a network mask 
  88. in dotted decimal notation (such as 255.255.0.0) or hexadecimal notation
  89. (such as 0xffff0000).
  90. </P>
  91. (Default value: none)
  92. <P>
  93. <STRONG>NIS domain name for this network:</STRONG> If this network is
  94. served by an NIS name server, this is the domain name that clients 
  95. specify when looking up a name. This is typically key words concatenated 
  96. with a period (such as engr.sgi.com), and is frequently the same as the DNS
  97. domain name. Enter a one-word domain name; do not use spaces in your entry.
  98. </P>
  99. (Default value: nis.com)
  100. <P>
  101. <I>Advanced options are are described in the dhcp_bootp(1M) reference page.</I>
  102. </P>
  103. <CENTER>
  104. <INPUT TYPE="button" VALUE="Back to Form" onClick="self.history.go(-1)">
  105. </CENTER>
  106. </FORM>
  107. EndOfFile
  108.